home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / MPW IIGS SC / SC.001.Shell / C Shell / Shell.make < prev    next >
Encoding:
Text File  |  1990-06-20  |  626 b   |  32 lines  |  [TEXT/MPS ]

  1. #
  2. #    This makefile builds:
  3. #        The sample application:    Shell
  4. #
  5. #    File:        Shell.make
  6. #    Target:        c.shell
  7. #    Sources:    Shell.c
  8. #                Shell.r
  9. #
  10. #    Copyright Apple Computer, Inc. 1988-1990
  11. #    All rights reserved.
  12. #
  13.  
  14. Shell ƒƒ Shell.make ∂
  15.     Shell.dfork ∂
  16.     Shell.rfork
  17.     DuplicateIIgs -y -mac c.shell :
  18.     
  19. Shell.c.obj ƒ Shell.make Shell.c
  20.     CIIgs Shell.c
  21.     
  22. Shell.dfork ƒ Shell.make Shell.c.obj
  23.     LinkIIGS -t S16 "{ciigslibraries}"Start.obj ∂
  24.     Shell.c.obj ∂
  25.     -lib "{ciigslibraries}"Clib ∂
  26.     -o Shell.dfork
  27.     Duplicate -d -y Shell.dfork c.shell
  28.     
  29. Shell.rfork ƒ Shell.make Shell.r    
  30.     RezIIgs Shell.r -o Shell.rfork
  31.     Duplicate -r -y Shell.rfork c.shell
  32.